home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 16
/
CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso
/
CUCD
/
Online
/
HBBS
/
Source
/
Test
/
Str
/
test.c
< prev
next >
Wrap
C/C++ Source or Header
|
1997-08-22
|
289b
|
20 lines
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <exec/types.h>
void strCpy(char *dest,char*source)
{
int loop=0;
while (dest[loop]=source[loop++]);
}
void main( void )
{
char *str1="Testing!";
char str2[20];
puts(str1);
strCpy(str2,str1);
puts(str2);
}